summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/settings/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/evcp/(evcp)/settings/page.tsx')
-rw-r--r--app/[lng]/evcp/(evcp)/settings/page.tsx18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/[lng]/evcp/(evcp)/settings/page.tsx b/app/[lng]/evcp/(evcp)/settings/page.tsx
new file mode 100644
index 00000000..a6eaac90
--- /dev/null
+++ b/app/[lng]/evcp/(evcp)/settings/page.tsx
@@ -0,0 +1,18 @@
+import { Separator } from "@/components/ui/separator"
+import { AccountForm } from "@/components/settings/account-form"
+
+export default function SettingsAccountPage() {
+ return (
+ <div className="space-y-6">
+ <div>
+ <h3 className="text-lg font-medium">Account</h3>
+ <p className="text-sm text-muted-foreground">
+ Update your account settings. Set your preferred language and
+ timezone.
+ </p>
+ </div>
+ <Separator />
+ <AccountForm />
+ </div>
+ )
+}